home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1993 / Internet Info CD-ROM (Walnut Creek) (1993).iso / networking / ip / ka9q / MacBMsrc.hqx / Mac bm Project / mac_files.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-03-06  |  1.1 KB  |  28 lines

  1. /* System-dependent definitions of various files, spool directories, etc */
  2.  
  3. /* mac_files.h
  4.  * this include file just defines the global filename storage areas that files.c
  5.  * defines for the Macintosh version. Because the Mac needs these names to be
  6.  * dynamic (since we determine the final absolute paths only at application launch),
  7.  * these are handled differently from the other versions of the KA9Q code.
  8.  *
  9.  * NOTE: These are only the global path names. There is use of path names that will
  10.  *    be session related (like FTP stuff). Those strings are stored in other dynamic
  11.  *    structures since they are not global to NET.
  12.  */
  13. extern char mailspool[256];    /* incoming mail folder */
  14. extern char mailqdir[256];    /* outgoing mail folder */
  15. extern char alias[256];        /* the alias file */
  16. extern char applroot[256];    /* root folder, where NET was launched from */
  17. extern char temppath[256];    /* temp file folder */
  18. extern char dirbm[256];    /* dir temp file */
  19.  
  20. #define MAILSPOOL "spool:mail:"
  21. #define MAILQDIR "spool:mqueue:"
  22. #define ROUTEQDIR "spool:rqueue:"
  23. #define ALIAS "alias"
  24. #define TEMPPATH "spool:"
  25. #define DIRBM "spool:dirbm.temp"
  26.  
  27.  
  28.